From: Debian Qt/KDE Maintainers Date: Thu, 19 Mar 2026 19:44:17 +0000 (+0100) Subject: Fix build on x32 X-Git-Tag: archive/raspbian/6.10.2-2+rpi1^2~2 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com//%22mailto:sonu.itbhu%40googlemail.com/%22/%22http:/www.example.com/%22mailto:sonu.itbhu%40googlemail.com/%22?a=commitdiff_plain;h=9cf23ab937a96d2a49d46fd08c4ac79197bbbc07;p=qt6-quick3d.git Fix build on x32 Origin: other, https://github.com/RenderKit/embree/issues/477 Bug: https://github.com/RenderKit/embree/issues/477 Gbp-Pq: Name embree_x32.patch --- diff --git a/src/3rdparty/embree/common/sys/platform.h b/src/3rdparty/embree/common/sys/platform.h index cd08a26..6790a02 100644 --- a/src/3rdparty/embree/common/sys/platform.h +++ b/src/3rdparty/embree/common/sys/platform.h @@ -36,7 +36,7 @@ #endif /* detect 64 bit platform */ -#if defined(__X86_64__) || defined(__aarch64__) +#if (defined(__X86_64__) || defined(__aarch64__)) && ! defined(__ILP32__) #define __64BIT__ #endif